/* Кнопка с конвертом */
.floating-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #000;
  cursor: pointer;
  z-index: 997;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-btn img {
   height: 20px;
}

/* Задний фон */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1000;
}

/* Попап */
.contact-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  background: #fff;
  border-radius: 12px;
  z-index: 1001;
  animation: fadeIn 0.3s ease;
}

.popup-content {
  padding: 20px;
}

.popup-content h3 {
  font-size: 18px;
  margin: 0 0 16px;
  text-align: center;
}

.popup-item {
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-radius: 8px;
  text-decoration: none;
  color: #000;
  transition: background 0.2s;
}
.popup-item img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.popup-item:hover {
  background: #f3f3f3;
}

.popup-close {
  width: 100%;
  padding: 14px;
  border: none;
  background: #e8e8e8;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translate(-50%, -40%);}
  to {opacity: 1; transform: translate(-50%, -50%);}
}